@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap');
/* General Reset */
* {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}

/* Navbar Styling */
.navbar {
    width: 100%;
    background-color: #f9b300; /* Clash of Clans gold */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 30px;
}

.logo img {
    height: 70px;
    width: auto;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links li a {
    text-decoration:none;
    color: white;
    font-weight: 600;
    font-size: 20px;
    transition: color 0.3s ease;
}

.nav-links li a:hover {
    color: #5c1d00; /* Darker red/brown for hover */

}

.banner img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}
.bannertext {
    position: absolute;
    top: 180px;
    left: 60px;
    color: #c77900; 
}

.bannertext h2 {
    font-size: 80px;
    margin-bottom: 10px;
    font-weight: bold;
    color: #ffffff;
    text-shadow: 0 0 5px rgb(31, 181, 198), 0 0 10px rgb(255, 255, 255), 0 0 15px #088; /* Glowing effect */
}

.bannertext p {
    font-size: 40px;
    font-weight: 400;
    color: #ffffff;
    font-weight: bold;
    text-shadow: 0 0 5px rgb(31, 181, 198), 0 0 10px rgb(255, 255, 255), 0 0 15px #088; /* Glowing effect */
}


/* Content Layout */
.left, .pic {
    display: inline-block;
    vertical-align: top;
    width: 48%;
    padding: 40px;
}

.left h1 {
    font-size: 42px;
    color: #f9b300;
    margin-bottom: 20px;
}

.left p {
    font-size: 20px;
    margin-bottom: 10px;
}

.pic img {
    width: 100%;
    height: auto;
}

/* Watch Button */
.watch {
    text-align: center;
    margin: 30px 0;
}

.watch a {
    padding: 12px 30px;
    background-color: #f9b300;
    color: #000;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.watch a:hover {
    background-color: #c77900;
}

/* Section Headings */
.news, .update, .video, .must, .footer {
    text-align: center;
    padding: 40px 0 20px;
    font-size: 32px;
    color: #f9b300;
}

/* Cards */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.news-card {
    background-color: #9bbac2;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.news-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.news-card h3 {
    padding: 15px;
    font-size: 20px;
    font-weight: bold;
    color: #333;
    text-align: center;
}

.news-card a {
    display: block;
    text-align: center;
    padding: 10px;
    background-color: #f9b300;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.news-card a:hover {
    background-color: #c77900;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}


h3 {
    margin: 10px 0;
    font-size: 16px;
    color: #fff;
}

a {
    color: #f9b300;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    background-color: #111;
    padding: 20px;
    text-align: center;
    color: #999;
    font-size: 14px;
    margin-top: 60px;
}
/* Cinematic Fade-In for Body */
body {
    animation: fadeIn 2s ease-in;
    background-color: #1a1a1a;
    color: #fff;
}
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px;
}

.video-card {
    background-color: #1e1e1e;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.video-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.video-card iframe {
    width: 100%;
    height: 180px;
    border: none;
    border-radius: 8px;
}

.video-card p {
    margin-top: 10px;
    color: #fff;
    font-weight: bold;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
#mute-toggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #f9b300;
    border: none;
    color: #fff;
    padding: 12px 20px;
    font-size: 16px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: background-color 0.3s ease;
    z-index: 999;
  }
  
  #mute-toggle:hover {
    background-color: #c87d00;
  }
  